e6d180a848d185b6b4e36605f4cbc2f7493b9ffb,src/com/opencms/file/genericSql/CmsDbAccess.java,CmsDbAccess,writeProperty,#String#Serializable#,481
Before Change
m_pool.putPreparedStatement(C_SYSTEMPROPERTIES_UPDATE_KEY,statementPropertyUpdate);
}
catch (SQLException e){
m_pool.putPreparedStatement(C_SYSTEMPROPERTIES_UPDATE_KEY,statementPropertyUpdate);
throw new CmsException("["+this.getClass().getName()+"]"+e.getMessage(),CmsException.C_SQL_ERROR, e);
}
catch (IOException e){
m_pool.putPreparedStatement(C_SYSTEMPROPERTIES_UPDATE_KEY,statementPropertyUpdate);
throw new CmsException("["+this.getClass().getName()+"]"+CmsException. C_SERIALIZATION, e);
}
After Change
m_pool.putPreparedStatement(C_SYSTEMPROPERTIES_UPDATE_KEY,statement);
}
catch (SQLException e){
m_pool.putPreparedStatement(C_SYSTEMPROPERTIES_UPDATE_KEY,statement);
throw new CmsException("["+this.getClass().getName()+"]"+e.getMessage(),CmsException.C_SQL_ERROR, e);
}
catch (IOException e){